1 /**
2 Copyright: Copyright (c) 2018, Joakim Brännström. All rights reserved.
3 License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
4 Author: Joakim Brännström (joakim.brannstrom@gmx.com)
5 */
6 module test_clang_check;
7 
8 import config;
9 
10 @("shall run clang-check and warning about div by zero")
11 unittest {
12     // action
13     auto res = run([codeCherckerBin, "--vverbose", "--compile-db",
14             buildPath(testData, "cpp", "code_mistakes")]);
15 
16     // assert
17     res.print;
18     res.status.shouldNotEqual(0);
19 }